[Docker] Docker Volume


  • docker volume share with host

    docker run --name website -v C:\Docker\website:/usr/share/nginx/html -d -p 3000:80 nginx

  • docker volume share between containers

    docker run --name website-copy --volumes-from website -d -p 8081:80 nginx

#docker






你可能感興趣的文章

SQL Excel Concatenate into INSERT Command

SQL Excel Concatenate into INSERT Command

「多個參數」不好嗎?

「多個參數」不好嗎?

module.exports 的運用

module.exports 的運用






留言討論